+-++-++-++-++-++-++-++-++-++-++-+
By : www.i4develope.com
Version : 1.0
Official Page : http://www.i4develope.com/Product-2.html
+-++-++-++-++-++-++-++-++-++-++-+

Installation Guide

Open file : includes/functions_forumlist.php

//
--- Search for :
//
 
	if (!defined('MAXFORUMDEPTH'))
	{
		define('MAXFORUMDEPTH', 2);
	}

	$forumbits = '';

//
--- Add below : 
//

if($depth == 2 && $tempext == "_post"){
$forumbits = "<TABLE BORDER='0' WIDTH='100%' ALIGN='CENTER' CELLPADDING='2'><tr>";
$i4d = 0;	
	}

//
--- Search for :
//

	($hook = vBulletinHook::fetch_hook('forumbit_display')) ? eval($hook) : false;

//
--- Add below : 
//

if($depth == 2 && $tempext == "_post"){
$i4d++;
$forumbits.="<td WIDTH='20%'>";
}

//
--- Search for :
//

eval('$forumbits .= "' . fetch_template("forumhome_forumbit_level$depth$tempext") . '";');

//
--- Add below : 
//


$i4d_c_perline = 3; // <- Change the number to the number of cats per line .. 2 for example
if($depth == 2 && $tempext == "_post"){
$forumbits.="</td>";
if($i4d == $i4d_c_perline){
$forumbits .= "</tr>";
$i4d = 0;
}}

+-++-++-++-++-++- Save the file & upload it  +-++-++-++-++-++-+

//
Open template : Forumhome
//

--- Search for :

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
	<tr align="center">
	  <td class="thead">&nbsp;</td>
	  <td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
	  <td class="thead">$vbphrase[last_post]</td>
	  <td class="thead">$vbphrase[threads]</td>
	  <td class="thead">$vbphrase[posts]</td>
	  <if condition="$vboptions['showmoderatorcolumn']">
	  <td class="thead">$vbphrase[moderator]</td>
	  </if>
	</tr>
</thead>
$forumbits
<tbody>
	<tr>
		<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
			<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
			<if condition="$vboptions['forumleaders']">&nbsp; &nbsp;
			<a href="showgroups.php$session[sessionurl_q]">$vbphrase[view_forum_leaders]</a></if>
		</strong></div></td>
	</tr>
</tbody>
</table>

--- Replace with :

$forumbits

+-++-++-++-++-++- Save the template +-++-++-++-++-++-+

//
Open template forumhome_forumbit_level2_post :
//

--- Replace all it's content with this cocde :

<table border="0" width="100%" dir="$stylevar[direction]" cellpadding="6" class="tborder" style="border-collapse: collapse" cellspacing="2">
	<tr>
		<td class="tcat" align="center" colspan="2">
				<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]"><strong>$forum[title]</strong></a></td>
	</tr>
	<tr>
		<td align="center" class="alt1" colspan="2">
								<p align="center">$forum[description]</td>
	</tr>
	<tr>
		<td class="alt2" align="center" width="50%">$vbphrase[threads]</td>
		<td class="alt2" width="50%" align="center">$vbphrase[posts]</td>
	</tr>
	<tr>
		<td class="alt1" align="center">
								<p dir="ltr">
								<span style="font-size: 8pt;">$forum[threadcount]</span></td>
		<td class="alt1" align="center">
								<p dir="ltr">
								<span style="font-size: 8pt;">$forum[replycount] </span>
		</td>
	</tr>
</table>

+-++-++-++-++-++- Save the template +-++-++-++-++-++-+


We are done!! enjoy ;) 

Regards
www.i4develope.com
http://www.i4develope.com/Product-2.html
